home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 15
/
BBS in a box XV-2.iso
/
Files II
/
Prog
/
S
/
Simple Sockets 1.0.1.sit
/
Simple Sockets 1.0.1 ƒ
/
ip ƒ
/
iptime.h
/
iptime.h
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-01-13
|
402 b
|
21 lines
|
[
TEXT/MMCC
]
/*
* time.h
*
* unixlike time stuff
*
*/
#ifndef __IPTIMEH__
#define __IPTIMEH__
struct timeval {
long tv_sec; /* seconds since Jan. 1, 1970 */
long tv_usec; /* and microseconds */
};
struct timezone {
int tz_minuteswest; /* minutes west of Greenwich */
int tz_dsttime; /* type of dst correction */
};
#endif /* __IPTIMEH__ */